home *** CD-ROM | disk | FTP | other *** search
/ Champak 103 / Vol 103.iso / games / shark_at.swf / scripts / DefineButton2_200 / BUTTONCONDACTION on(release).as
Text File  |  2010-03-13  |  482b  |  14 lines

  1. on(release){
  2.    if(_root.scoredone == "done" and _root.hiscore20 < _root.score and _root.old_score != _root.score)
  3.    {
  4.       _root.old_score = _root.score;
  5.       _root.hiscore = _root.score;
  6.       if(_root.xname eq "Name Here")
  7.       {
  8.          _root.xname = "etgames";
  9.       }
  10.       loadVariablesNum("/scores.php?action=sendscore&game=" + _root.game + "&hiscore=" + _root.hiscore + "&xname=" + _root.xname + "&randx=" + random(100),0,"POST");
  11.    }
  12.    _visible = 0;
  13. }
  14.